home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / TGCBOR20.ARJ / INTROPAK.COM / TWHELLO.C < prev    next >
Text File  |  1991-04-06  |  409b  |  22 lines

  1.  
  2.   /* -- simplest program using high level windows  */
  3.  
  4. #include "teglsys.h"
  5.  
  6.    winframeptr  wf;
  7.  
  8. void main(void)
  9. {
  10.  
  11.   tweasystart();   /* -- simple startup  */ 
  12.  
  13.   twinit(&wf,100,100,400,250);   /* -- creates & initializes  */
  14.   twsetheader(wf,"Hello World");   /* -- set up individual items  */ 
  15.   twdrawwindowframe(wf);   /* -- draw it the first time  */ 
  16.  
  17.   teglsupervisor(); 
  18. }
  19.  
  20.  
  21.  
  22.